From ffaf581fbdaceb59bf7949e7fb7ac43420179d87 Mon Sep 17 00:00:00 2001 From: "awilliam@xenbuild.aw" Date: Mon, 3 Apr 2006 08:58:10 -0600 Subject: [PATCH] [IA64] fix make world When the arch/ia64/Makefile was cloned from the Linux tree, the install target was changed to remove a dependency on vmlinux.gz. That makes sense, but the invocation of install.sh in that target still used $< to refer to the dependency that had been removed. Hence, install.sh would fail, and make world would stop prematurely. Signed-off-by: Al Stone --- linux-2.6-xen-sparse/arch/ia64/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-2.6-xen-sparse/arch/ia64/Makefile b/linux-2.6-xen-sparse/arch/ia64/Makefile index 172b4cfd44..040bd51606 100644 --- a/linux-2.6-xen-sparse/arch/ia64/Makefile +++ b/linux-2.6-xen-sparse/arch/ia64/Makefile @@ -91,7 +91,7 @@ boot: lib/lib.a vmlinux $(Q)$(MAKE) $(build)=$(boot) $@ install: - sh $(srctree)/arch/ia64/install.sh $(KERNELRELEASE) $< System.map "$(INSTALL_PATH)" + -yes | sh $(srctree)/arch/ia64/install.sh $(KERNELRELEASE) vmlinux.gz System.map "$(INSTALL_PATH)" define archhelp echo '* compressed - Build compressed kernel image' -- 2.30.2